home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / fd / unlink.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  184b  |  18 lines

  1.  
  2. /*
  3.  *  UNLINK.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10.  
  11. int
  12. unlink(name)
  13. char *name;
  14. {
  15.     return(remove(name));
  16. }
  17.  
  18.